wxWizardPage
Table of Contents

Creation parameters:


A wxWizardPage is actually a panel that will be displayed in the wxWizard. You must call set_next_wizard_page() and set_prev_wizard_page() for each page to set the next and previous pages. The first and last pages will have previous and next pages of 0, respectively.

  • proc set_next_wizard_page( atom page, atom next )   
  • proc set_prev_wizard_page( atom page, atom prev )     
     
    Parent Topics:
  • Classes
  • Controls
  • wxWizard

    wxWizardPage
    Table of Contents

    [proc]
    set_next_wizard_page
    ( atom page, atom next )

    Category: wxWizardPage

    This makes the next button on page go to the page specified by preview. code -- Ex. -- P1 = First page -- P2 = Second page set_next_wizard page ( p1, p2 ) endcode would make it so that clicking the next button on p1 would make the wizard show p2.

    See Also: set_prev_wizard_page


    wxWizardPage
    Table of Contents

    [proc]
    set_prev_wizard_page
    ( atom page, atom prev )

    Category: wxWizardPage

    This makes the prev button on page go to the page specified by preview. code -- Ex. -- P1 = First page -- P2 = Second page set_prev_wizard page ( p2, p1 ) endcode would make it so that clicking the prev button on p2 would make the wizard show p1.

    See Also: set_next_wizard_page